home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / amos / amoslist-1294.lzh / AMOSLIST / text0005.txt < prev    next >
Encoding:
Text File  |  1995-01-03  |  671 b   |  26 lines

  1.     I haven't test it but I think you can use banks.Say you have a 
  2. bank and you want to change its length.Just reserve a new one with 
  3. the desirable size and copy the contents of the old, to the new 
  4. one.
  5.     Example:
  6.     During runtime you access Bank No #1
  7.         
  8.     bnum=1
  9.     reserve as work bnum,<size>
  10.         .
  11.         .
  12.         .
  13.     reserve as work 999,<new size>
  14.     copy bnum to 999 ' I don't remember the command now (I'm at the 
  15. Univ.
  16.     reserve as work bnum,<new size>
  17.     copy 999 to bnum
  18.     
  19.     Another untested way is poking the addresses BEFORE the Start(n) 
  20. address.See the manual.
  21.  
  22. P.S.  I 'll send you the answer of the second way later...
  23.  
  24.  
  25.  
  26.